home *** CD-ROM | disk | FTP | other *** search
/ Whiteline: delta / whiteline CD Series - delta.iso / systems / unixtkit / man.arc / OD.MAN < prev    next >
Text File  |  1988-03-28  |  4KB  |  133 lines

  1.  
  2.  
  3.  
  4.         OD                    ST-UNIX User's Manual                    OD
  5.  
  6.  
  7.  
  8.         COMMAND
  9.              od - octal, decimal, hex, ascii etc. dump
  10.  
  11.         FORMAT
  12.              od [ -format ] [ file ] [ [+]offset[.][b] [label] ]
  13.  
  14.         DESCRIPTION
  15.              _✓O_✓d displays _✓f_✓i_✓l_✓e, (standard input default), in one  or  more
  16.              dump formats specified by _✓f_✓o_✓r_✓m_✓a_✓t (default is -o).
  17.  
  18.              The options for format are:
  19.  
  20.              a    Interpret bytes as characters  and  display  them  with
  21.                   their ASCII names.
  22.  
  23.              b    Interpret bytes as unsigned octal.
  24.  
  25.              c    Interpret bytes  as  ASCII  characters.   Certain  non-
  26.                   graphic   characters  appear  as  C  escapes:  null=\0,
  27.                   backspace=\b,   formfeed=\f,   newline=\n,   return=\r,
  28.                   tab=\t; others appear as 3-digit octal numbers.
  29.  
  30.              d    Interpret (short) words as unsigned decimal.
  31.  
  32.              D    Interpret long words as unsigned decimal.
  33.  
  34.              e or F
  35.                   Interpret double words  as  double  precision  floating
  36.                   point.
  37.  
  38.              f    Interpret  long  words  as  single  precision  floating
  39.                   point.
  40.  
  41.              h or x
  42.                   Interpret (short) words as unsigned hexadecimal.
  43.  
  44.              H or X
  45.                   Interpret long words as unsigned hexadecimal.
  46.  
  47.              i    Interpret (short) words as signed decimal.
  48.  
  49.              l, I, or L
  50.                   Interpret long words as signed decimal.
  51.  
  52.              o or B
  53.                   Interpret (short) words as unsigned octal.
  54.  
  55.              O    Interpret long words as unsigned octal.
  56.  
  57.              v    Show all data.  By  default,  display  lines  that  are
  58.                   identical  to  the  last line shown are not output, but
  59.                   are indicated with an ``*'' in column 1.
  60.  
  61.  
  62.  
  63.         Printed 28/March/1988     30 March 1987                         1
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.         OD                    ST-UNIX User's Manual                    OD
  71.  
  72.  
  73.  
  74.              w_✓n   Specifies the number of input bytes to  be  interpreted
  75.                   and  displayed  on each output line. If w is not speci-
  76.                   fied, 16 bytes are read for each display line.  If _✓n is
  77.                   not specified, it defaults to 32.
  78.  
  79.              The _✓o_✓f_✓f_✓s_✓e_✓t argument specifies the byte offset into the  file
  80.              where  dumping  is to commence.  By default this argument is
  81.              interpreted in octal.  A different radix can  be  specified;
  82.              if  ``.'' is appended to the argument, then _✓o_✓f_✓f_✓s_✓e_✓t is inter-
  83.              preted in decimal.  If _✓o_✓f_✓f_✓s_✓e_✓t begins with ``x''  or  ``0x'',
  84.              it  is  interpreted  in  hexadecimal.   If  ``b'' (``B'') is
  85.              appended, the offset is interpreted as a block count,  where
  86.              a  block  is 512 bytes.  If the _✓f_✓i_✓l_✓e argument is omitted, an
  87.              _✓o_✓f_✓f_✓s_✓e_✓t argument must be preceded by ``+''.
  88.  
  89.              The radix of the displayed address will be the same  as  the
  90.              radix  of  the  _✓o_✓f_✓f_✓s_✓e_✓t,  if  specified; otherwise it will be
  91.              octal.
  92.  
  93.              _✓L_✓a_✓b_✓e_✓l will be interpreted as a pseudo-address for the  first
  94.              byte  displayed.   It  will be shown in ``()'' following the
  95.              file offset.
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.         Printed 28/March/1988     30 March 1987                         2
  130.  
  131.  
  132.  
  133.